home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2003 November / PCWK1103B.iso / DesignCAD 3D Max PLUS trial 30 / DATA1.CAB / Example_Files / Sample_Macros / Numeric Format.d3m < prev    next >
Encoding:
Text File  |  2003-09-29  |  676 b   |  31 lines

  1. ' This simple macro changes the Dimension text format 
  2. ' and Coordinate Bar distance and angle formats, 
  3. ' Place it on a custom toolbar for quick access.
  4. ' Sys 101 changes the Dimension text format 
  5. ' 0 = decimal, 
  6. ' 1 = fractional, 
  7. ' 2 = feet and decimal inches, 
  8. ' 3 = feet and fractional inches
  9. '
  10. ' Sys 150 Changes the Coordinate bar angle display mode
  11. ' 0 = degrees, 
  12. ' 1 = grads, 
  13. ' 2 = radians, 
  14. ' 3 = degrees-minutes-seconds, 
  15. ' 4 = bearings
  16. '
  17. ' Sys 151 changes the Coordinate bar distance display mode
  18. ' 1 = decimal, 
  19. ' 2 = fractions, 
  20. ' 3 = feet + fractional inches
  21. '
  22. ' Start Program
  23.     Sys(101) = 1
  24.     Sys(150) = 0
  25.     Sys(151) = 2
  26. End
  27.  
  28.  
  29.  
  30.